home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 783 b | 40 lines | [TEXT/MPS ] |
- // UDebugView.h
- // Copyright © 1984-96 by Apple Computer, Inc. All rights reserved.
-
- #ifndef __UDEBUGVIEW__
- #define __UDEBUGVIEW__
-
- #if qDebug
-
- // MacApp
-
- #ifndef __UVIEW__
- #include "UView.h"
- #endif
-
- //----------------------------------------------------------------------------------------
- // class TDebugFlagsView:
- //----------------------------------------------------------------------------------------
-
- class TDebugFlagsView : public TView
- {
- MA_DECLARE_CLASS;
-
- public: // methods
-
- TDebugFlagsView();
- // Constructor
- virtual ~TDebugFlagsView();
- // Destructor
-
- virtual void DoEvent(EventNumber eventNumber,
- TEventHandler* source,
- TEvent* event);
-
- virtual void DoPostCreate(TDocument* itsDocument);
- };
-
- #endif // qDebug
-
- #endif // __UDEBUGVIEW__
-